사이트 내 전체검색
[javascript] 브라우저 너비 구해오기
로빈아빠
https://cmd.kr/javascript/542 URL이 복사되었습니다.

본문


function _getClientWidth() {
  var ret;
  if (self.innerHeight) {
   // IE 외 모든 브라우저
   ret = self.innerWidth;
  } else if (document.documentElement && document.documentElement.clientHeight) {
   // Explorer 6 Strict
   ret = document.documentElement.clientWidth;
  } else if (document.body) {
   // IE Browser
   ret = document.body.clientWidth;
  }
  return ret;
 }
 function _getClientHeight() {
  var ret;
  if (self.innerHeight) {
   ret = self.innerHeight;
  } else if (document.documentElement && document.documentElement.clientHeight) {
   ret = document.documentElement.clientHeight;
  } else if (document.body) {
   ret = document.body.clientHeight;
  }
  return ret;
 }

댓글목록

등록된 댓글이 없습니다.

831 (8/17P)

Search

Copyright © Cmd 명령어 18.119.172.243